blob: ca0788a59b71cad668ec4fdd4a92559ecd90a1cc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { redirect } from 'next/navigation'
interface PageProps {
params: Promise<{ lng: string; id: string }>
}
export default async function Page({ params }: PageProps) {
const { lng, id } = await params
// 기본적으로 입찰 사전견적 페이지로 리다이렉트
redirect(`/${lng}/evcp/bid/${id}/pre-quote`)
}
|